home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(nop > 0)
- {
- nop -= 1;
- }
- if(Key.isDown(39))
- {
- chk_r = 1;
- }
- else
- {
- chk_r = 0;
- }
- if(Key.isDown(37))
- {
- chk_l = 1;
- }
- else
- {
- chk_l = 0;
- }
- if(_root.target_s == 1 && nop == 0)
- {
- if(chk_r == 1 && chk_l == 0)
- {
- _X = _root.chara02._x;
- _root.target_s = 2;
- nop = 4;
- }
- }
- if(_root.target_s == 2 && nop == 0)
- {
- if(chk_r == 1 && chk_l == 0)
- {
- _X = _root.chara03._x;
- _root.target_s = 3;
- nop = 4;
- }
- if(chk_r == 0 && chk_l == 1)
- {
- _X = _root.chara01._x;
- _root.target_s = 1;
- nop = 4;
- }
- }
- if(_root.target_s == 3 && nop == 0)
- {
- if(chk_r == 0 && chk_l == 1)
- {
- _X = _root.chara02._x;
- _root.target_s = 2;
- nop = 4;
- }
- }
- if(Key.isDown(83))
- {
- speedY -= sp;
- }
- }
-